pr1/Demo/Data/LocalData/Entity/User.cs

26 lines
533 B
C#
Raw Permalink Normal View History

2024-10-19 21:12:06 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Demo.domain.Models
{
public class UserLocalEnity : IEquatable<UserLocalEnity>
{
2024-11-17 16:24:01 +00:00
2024-10-19 21:12:06 +00:00
public required string FIO { get; set; }
public Guid Guid { get; set; }
public required int GroupID { get; set; }
2024-11-17 16:24:01 +00:00
2024-10-19 21:12:06 +00:00
public bool Equals(UserLocalEnity? other)
{
if (other == null) return false;
return this.Guid.Equals(other.Guid);
}
}
}