Update Lib hinzugefügt

This commit is contained in:
Husky
2021-03-25 19:01:54 +01:00
parent 69e10af592
commit b7048beede
12 changed files with 597 additions and 29 deletions

View File

@@ -0,0 +1,21 @@
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;
}
}
}