Demo/Data/LocalData/Entity/User.cs

21 lines
539 B
C#
Raw Permalink Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Posechaemost.Data.LocalData.Entity
{
public class UserLocalEntity : IEquatable<UserLocalEntity>
{
public required string FIO {get; set; }
public Guid Guid {get; set;}
public required int GroupID {get; set;}
public bool Equals(UserLocalEntity? other)
{
if (other == null) return false;
return this.Guid.Equals(other.Guid);
}
}
}