mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-03-03 00:00:49 +08:00
16 lines
357 B
C#
16 lines
357 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Net461DllTest.Data
|
|
{
|
|
public class MyData
|
|
{
|
|
public int[] Values { get; set; } = new int[] { 1, 1, 4, 5, 1, 4, 1, 9, 9, 9 };
|
|
public int Count { get; set; }
|
|
public string Tips { get; set; }
|
|
}
|
|
}
|