14 lines
425 B
C#
14 lines
425 B
C#
namespace Marco.Pms.Model.MongoDBModels
|
|
{
|
|
public class OrganizationMongoDB
|
|
{
|
|
public string Id { get; set; } = string.Empty;
|
|
public string? Name { get; set; }
|
|
public string? Email { get; set; }
|
|
public string? ContactPerson { get; set; }
|
|
public string? Address { get; set; }
|
|
public string? ContactNumber { get; set; }
|
|
public double SPRID { get; set; }
|
|
}
|
|
}
|