Files
radzen-blazor/RadzenBlazorDemos/Models/Northwind/CustomerDemographic.cs
2021-01-19 11:02:49 +02:00

28 lines
550 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace RadzenBlazorDemos.Models.Northwind
{
[Table("CustomerDemographics")]
public partial class CustomerDemographic
{
[Key]
public string CustomerTypeID
{
get;
set;
}
[InverseProperty("CustomerDemographic")]
public ICollection<CustomerCustomerDemo> CustomerCustomerDemos { get; set; }
public string CustomerDesc
{
get;
set;
}
}
}