25'ten fazla konu seçemezsiniz
Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
|
- using System.ComponentModel.DataAnnotations;
-
- namespace Campaign_Tracker.Server.Seed.Models;
-
- public class RequiredFieldRule
- {
- public int Id { get; set; }
-
- [Required]
- [StringLength(100)]
- public string Name { get; set; } = string.Empty;
-
- [StringLength(500)]
- public string Description { get; set; } = string.Empty;
-
- [Required]
- [StringLength(200)]
- public string FieldPath { get; set; } = string.Empty;
-
- public bool IsRequired { get; set; } = true;
-
- public bool IsActive { get; set; } = true;
-
- public DateTime CreatedAt { get; set; } = DateTime.UtcNow;
-
- public DateTime UpdatedAt { get; set; } = DateTime.UtcNow;
- }
|