Update Lib hinzugefügt
This commit is contained in:
21
UpdateLib/Data/UpdateFileInfo.cs
Normal file
21
UpdateLib/Data/UpdateFileInfo.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user