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 Motions { get; set; } = null!; }