The-Standard-Organization / GitFyle.Core.Api

15 stars 15 forks source link

DATA: Configuration #141

Closed cjdutoit closed 2 months ago

cjdutoit commented 2 months ago
  public class Configuration
  {
      public Guid Id { get; set; }
      public string Name { get; set; }
      public string Value { get; set; }
      public string Type { get; set; } 
      public string CreatedBy { get; set; }
      public DateTimeOffset CreatedDate { get; set; }
      public string UpdatedBy { get; set; }
      public DateTimeOffset UpdatedDate { get; set; }
  }

Required properties:

Unique properties:

makhammadsoliyev commented 2 months ago

I can grab this