25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- using System.ComponentModel.DataAnnotations;
-
- namespace Campaign_Tracker.Server.Seed.Models;
-
- public class ReferenceValue
- {
- public int Id { get; set; }
-
- [Required]
- [StringLength(100)]
- public string Name { get; set; } = string.Empty;
-
- [StringLength(500)]
- public string Description { get; set; } = string.Empty;
-
- public string Value { get; set; } = string.Empty;
-
- public bool IsActive { get; set; } = true;
-
- public DateTime CreatedAt { get; set; } = DateTime.UtcNow;
-
- public DateTime UpdatedAt { get; set; } = DateTime.UtcNow;
- }
|