Skip to content

Instantly share code, notes, and snippets.

View trevorchunestudy's full-sized avatar

Trevor Chunestudy trevorchunestudy

  • JBS Solutions
  • Bend, Oregon
View GitHub Profile
using System.ComponentModel.DataAnnotations;
namespace LMS.Core.Domain.Management
{
public class User : Entity
{
private User(string authId)
{
AuthId = authId;
}