11 lines
339 B
C#
11 lines
339 B
C#
namespace Marco.Pms.Model.MongoDBModels.Project
|
|
{
|
|
public class ProjectBasicMongoDB
|
|
{
|
|
public string Id { get; set; } = string.Empty;
|
|
public string Name { get; set; } = string.Empty;
|
|
public string ShortName { get; set; } = string.Empty;
|
|
public string TenantId { get; set; } = string.Empty;
|
|
}
|
|
}
|