SurveyVista/Model/Subscription.cs
2024-04-03 16:40:00 +02:00

22 lines
440 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model
{
public class Subscription
{
public int Id { get; set; }
public string? Name { get; set; }
[Required]
[EmailAddress]
public string? Email { get; set; }
public bool IsSubscribed { get; set; }
}
}