34 lines
686 B
C#
34 lines
686 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace WinFormsLibrary.Object
|
|
{
|
|
public class Example
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string Status { get; set; } = string.Empty;
|
|
|
|
public string FirstName { get; set; } = string.Empty;
|
|
|
|
public string LastName { get; set; } = string.Empty;
|
|
|
|
public int Age { get; set; }
|
|
|
|
public string Children { get; set; } = string.Empty;
|
|
|
|
public string Car { get; set; } = string.Empty;
|
|
|
|
public string Department { get; set; } = string.Empty;
|
|
|
|
public string Position { get; set; } = string.Empty;
|
|
|
|
public double Bonus { get; set; }
|
|
}
|
|
}
|
|
|
|
|