11 lines
332 B
C#
11 lines
332 B
C#
namespace Marco.Pms.Model.MongoDBModels
|
|
{
|
|
public class OrganizationMongoDB
|
|
{
|
|
public string Id { get; set; } = string.Empty;
|
|
public string Name { get; set; } = string.Empty;
|
|
public string Email { get; set; } = string.Empty;
|
|
public string ContactPerson { get; set; } = string.Empty;
|
|
}
|
|
}
|