16 lines
288 B
C#
16 lines
288 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BOB.Models
|
|
{
|
|
public class SubProgramItem
|
|
{
|
|
public string Name { get; set; } = "";
|
|
|
|
public string FilePath { get; set; } = "";
|
|
}
|
|
}
|