blob: 8d2586d8b0924fea0a89a7a2cce3e5d881992470 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.BL.DTO
{
public class GbdDTO : GbdDTOBase
{
protected override string OnGetActionLogName()
{
return $"GBD '{FileName}'";
}
}
}
|