-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCountry.cs
More file actions
21 lines (19 loc) · 708 Bytes
/
Country.cs
File metadata and controls
21 lines (19 loc) · 708 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated from a template.
//
// Manual changes to this file may cause unexpected behavior in your application.
// Manual changes to this file will be overwritten if the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace jQueryDataTable
{
using System;
using System.Collections.Generic;
public partial class Country
{
public int CountryId { get; set; }
public string CountryName { get; set; }
public Nullable<bool> IsSuppressed { get; set; }
}
}