18 lines
477 B
C#
18 lines
477 B
C#
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
|
|
namespace UserService.Infrastructure.DataModels
|
|
{
|
|
public class User : Member
|
|
{
|
|
public string? FirstName { get; set; }
|
|
public string? LastName { get; set; }
|
|
public bool IsActive { get; set; }
|
|
|
|
[EmailAddress]
|
|
public string? EMail { get; set; }
|
|
|
|
public string FullName => $"{FirstName} {LastName}";
|
|
}
|
|
} |