14 lines
377 B
C#
14 lines
377 B
C#
using MongoDB.Bson;
|
|
using MongoDB.Bson.Serialization.Attributes;
|
|
|
|
namespace Marco.Pms.Model.Dtos.AppMenu
|
|
{
|
|
public class CreateMobileSideMenuItemDto
|
|
{
|
|
public string? Name { get; set; }
|
|
public bool Available { get; set; }
|
|
public string? MobileLink { get; set; }
|
|
public List<Guid> PermissionIds { get; set; } = new List<Guid>();
|
|
}
|
|
}
|