Files
GroundOrganizer/BL/DataPair.cs
2026-01-06 02:07:18 +03:00

27 lines
745 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GroundOrganizer
{ [Serializable]
public struct DataPair
{
public string Описание { get; set; }
public object Параметр { get; set; }
public UnitsForce ForcesUnits { get; set; }
public UnitsStress StressUnits { get; set; }
public UnitsArea AreasUnits { get; set; }
public UnitsLin LenghtsUnits { get; set; }
}
[Serializable]
public struct DataPairProps
{
public string Описание { get; set; }
public object Параметр { get; set; }
public UnitsList Ед_изм { get; set; }
}
}