Files
Kanalsanierungsverwaltung/UpdateLib/Data/UpdateFileInfo.cs
2021-03-25 19:01:54 +01:00

22 lines
445 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace UpdateLib.Data
{
[Serializable]
public class UpdateFileInfo
{
public string Name { get; set; }
public string Description { get; set; }
public UpdateFileInfo(string name, string desc)
{
this.Name = name;
this.Description = desc;
}
}
}