15 lines
470 B
C#
15 lines
470 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? GSTNumber { get; set; }
|
|
public string? ContactNumber { get; set; }
|
|
public long SPRID { get; set; }
|
|
}
|
|
}
|