mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
20 lines
372 B
C#
20 lines
372 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace TestAssembly
|
|
{
|
|
public class TestClass
|
|
{
|
|
public string _Field;
|
|
|
|
public string Property { get; set; }
|
|
|
|
public string TestMethod(string aTestParameter)
|
|
{
|
|
return string.Empty;
|
|
}
|
|
}
|
|
}
|