Files
myoffice/MyOffice.Data.Models/Motions/MotionCategory.cs
T
2023-06-17 14:16:09 +03:00

12 lines
303 B
C#

namespace MyOffice.Data.Models.Motions;
using Users;
public class MotionCategory
{
public Guid Id { get; set; }
public Guid UserId { get; set; }
public User User { get; set; } = null!;
public string Name { get; set; } = null!;
public IEnumerable<MotionAccount> Motions { get; set; } = null!;
}