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

26 lines
578 B
C#
Raw Permalink Normal View History

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