12 lines
199 B
C#
12 lines
199 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace WinFormsApp3.Models;
|
|
|
|
public partial class EdIzm
|
|
{
|
|
public int IdedIzm { get; set; }
|
|
|
|
public string Name { get; set; } = null!;
|
|
}
|