mirror of
https://github.com/radzenhq/radzen-blazor.git
synced 2026-07-08 18:16:08 +00:00
28 lines
550 B
C#
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;
|
|
}
|
|
}
|
|
}
|