You've already forked onecmonitor
mirror of
https://github.com/akpaevj/onecmonitor.git
synced 2026-06-13 21:18:17 +02:00
10 lines
299 B
C#
10 lines
299 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace OneSwiss.Server.Models;
|
|
|
|
public class CustomNotification : DatabaseObject
|
|
{
|
|
[MaxLength(30)] public string Key { get; set; } = string.Empty;
|
|
|
|
[Required(AllowEmptyStrings = true)] public string Description { get; set; } = string.Empty;
|
|
} |