GuidEntity.cs 332 B

1234567891011121314
  1. using System;
  2. using System.ComponentModel.DataAnnotations;
  3. using System.ComponentModel.DataAnnotations.Schema;
  4. namespace Quadarax.Foundation.Core.Data.Entity
  5. {
  6. public abstract class GuidEntity : Entity<Guid>
  7. {
  8. [Key]
  9. [Column("Id")]
  10. [Required]
  11. public override Guid Id { get; set; }
  12. }
  13. }