13 lines
231 B
C#
13 lines
231 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Builder.Model
|
|
{
|
|
public class ExcludeDll
|
|
{
|
|
public string dllName { get; set; }
|
|
public string packageName { get; set; }
|
|
}
|
|
}
|