17 lines
367 B
C#
17 lines
367 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace watcher_monitoring.Models;
|
|
|
|
public class Container
|
|
{
|
|
[Key]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
|
public int Id { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(50)]
|
|
public required string ContainerName { get; set; } = null!;
|
|
|
|
}
|