Raspisanie/data/LocalData/Entity/User.cs
2024-12-11 11:30:05 +03:00

20 lines
411 B
C#

namespace domain.Models
{
public class UserLocalEnity : IEquatable<UserLocalEnity>
{
public required string FIO { get; set; }
public Guid Guid { get; set; }
public required int GroupID { get; set; }
public bool Equals(UserLocalEnity? other)
{
if (other == null) return false;
return this.Guid.Equals(other.Guid);
}
}
}