mirror of
https://github.com/dlang/dmd.git
synced 2025-04-29 22:50:27 +03:00
11 lines
No EOL
179 B
D
11 lines
No EOL
179 B
D
module example7190.models.HomeModel;
|
|
|
|
import serenity7190.core.Model;
|
|
|
|
struct Article {
|
|
ulong id;
|
|
}
|
|
|
|
class HomeModel : Model {
|
|
private SqlitePersister!Article mArticles;
|
|
} |