15 lines
456 B
C#
15 lines
456 B
C#
using MongoDB.Bson;
|
|
using MongoDB.Bson.Serialization.Attributes;
|
|
|
|
namespace Marco.Pms.Model.TenantModels.MongoDBModel
|
|
{
|
|
public class SupportDetails
|
|
{
|
|
[BsonId]
|
|
[BsonRepresentation(BsonType.String)]
|
|
public Guid Id { get; set; } = Guid.NewGuid();
|
|
public bool EmailSupport { get; set; } = true;
|
|
public bool PhoneSupport { get; set; } = false;
|
|
public bool PrioritySupport { get; set; } = false;
|
|
}
|
|
} |