mgtzm/src/Item.zig

8 lines
178 B
Zig
Raw Normal View History

2022-10-20 11:23:15 +00:00
const std = @import("std");
const Db = @import("Db.zig");
const Tag = @import("Tag.zig");
id: ?u32, // If null, the object hasn't been persisted
name: []const u8,
tags: ?[]Tag,