8 lines
212 B
C#
8 lines
212 B
C#
namespace MyOffice.Data.Models.Motions;
|
|
|
|
public class MotionGlobal
|
|
{
|
|
public Guid Id { get; set; }
|
|
public string Name { get; set; } = null!;
|
|
public IEnumerable<MotionAccount> Motions { get; set; } = null!;
|
|
} |