11 lines
346 B
C#
11 lines
346 B
C#
namespace Marco.Pms.Model.MongoDBModels.Masters
|
|
{
|
|
public class ActivityGroupMasterMongoDB
|
|
{
|
|
public string Id { get; set; } = string.Empty;
|
|
public string Name { get; set; } = string.Empty;
|
|
public string Description { get; set; } = string.Empty;
|
|
public ServiceMasterMongoDB? Service { get; set; }
|
|
}
|
|
}
|