using Models; using System; using System.Collections.Generic; using System.Linq; using System.Runtime.Serialization; using System.Text; using System.Threading.Tasks; namespace LocalEndpoint.Data { [DataContract] internal record AccountData( [property: DataMember] Guid UserId, [property: DataMember] string Email, [property: DataMember] string PasswordHash ); }