xxxproject/Demo/Data/Entity/User.cs
Class_Student 6b9b5a424f init
2024-10-30 12:11:19 +03:00

25 lines
525 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Demo.Data.Entity
{
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 Guid.Equals(other.Guid);
}
}
}