add openhack files
This commit is contained in:
20
support/simulator/Simulator.DataObjects/BaseDataObject.cs
Normal file
20
support/simulator/Simulator.DataObjects/BaseDataObject.cs
Normal file
@ -0,0 +1,20 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace Simulator.DataObjects
|
||||
{
|
||||
|
||||
public interface IBaseDataObject
|
||||
{
|
||||
string Id { get; set; }
|
||||
}
|
||||
public class BaseDataObject: IBaseDataObject
|
||||
{
|
||||
public string Id { get; set; }
|
||||
public BaseDataObject()
|
||||
{
|
||||
Id = Guid.NewGuid().ToString();
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,7 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>netcoreapp3.1</TargetFramework>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
Reference in New Issue
Block a user